+2005-09-28 Federico Mena Quintero <federico@ximian.com>
+
+ * tests/autotestfilechooser.c (test_reload_sequence): Oops, return
+ if the unmap test fails.
+ (test_reload_sequence): Use gtk_widget_show_now() instead of
+ gtk_widget_show() for the dialog.
+ Thanks to Tim Janik for noticing these.
+
2005-09-28 Federico Mena Quintero <federico@ximian.com>
* tests/testcellrenderertext.c: New file with a set of tests for
+2005-09-28 Federico Mena Quintero <federico@ximian.com>
+
+ * tests/autotestfilechooser.c (test_reload_sequence): Oops, return
+ if the unmap test fails.
+ (test_reload_sequence): Use gtk_widget_show_now() instead of
+ gtk_widget_show() for the dialog.
+ Thanks to Tim Janik for noticing these.
+
2005-09-28 Federico Mena Quintero <federico@ximian.com>
* tests/testcellrenderertext.c: New file with a set of tests for
GTK_STOCK_OK,
GTK_RESPONSE_ACCEPT,
NULL);
- gtk_widget_show (dialog);
+ gtk_widget_show_now (dialog);
action = gtk_file_chooser_get_action (GTK_FILE_CHOOSER (dialog));
/* After mapping, it is loading some folder, either the one that was explicitly set or the default one */
- gtk_widget_show (dialog);
+ gtk_widget_show_now (dialog);
passed = (impl->current_folder != NULL
&& impl->browse_files_model != NULL
&& ((impl->load_state == LOAD_LOADING || impl->load_state == LOAD_FINISHED)
? (impl->load_timeout_id == 0 && impl->sort_model != NULL)
: TRUE));
+ if (!passed)
+ return FALSE;
/* Map it again! */
- gtk_widget_show (dialog);
+ gtk_widget_show_now (dialog);
passed = (impl->current_folder != NULL
&& impl->browse_files_model != NULL